使用Object.create()实现继承
一、常见继承方式 我们日常开发中常见的继承方式主要有: 1、默认模式: Child.prototype = new Parent(); 2、借用构造函数: function Child(a, ...
一、常见继承方式 我们日常开发中常见的继承方式主要有: 1、默认模式: Child.prototype = new Parent(); 2、借用构造函数: function Child(a, ...